home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / GRAPHICS / IMGLIB95 / SCROLLIM.DP_ / SCROLLIM.DP
Text File  |  1996-03-31  |  185b  |  14 lines

  1. program Scrollim;
  2.  
  3. uses
  4.   Forms,
  5.   Uscroll in 'USCROLL.PAS' {ScrollForm1};
  6.  
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TScrollForm1, ScrollForm1);
  12.   Application.Run;
  13. end.
  14.